home *** CD-ROM | disk | FTP | other *** search
- global gCountry, ggameNum
-
- on InterfaceEvent myEvent
- case myEvent of
- "VIDEO":
- go("video")
- "SCORES":
- go(1, "scores")
- "FINAL MISSION":
- go("Final_0")
- "TRAINING GROUND":
- go("Training")
- "SELECT YOUR LANGUAGE":
- go("Lang")
- "EXIT":
- fileio("Write")
- if the runMode <> "Author" then
- quit()
- end if
- "WWW.NIKEFOOTBALL.COM":
- gotoNetPage("www.nikefootball.com")
- "eng", "ger", "fre", "dut", "spa", "ita":
- gCountry = myEvent
- setLangcast()
- fileio("Write")
- "OK":
- go(#next)
- "Back":
- go("Options")
- "R_arrow":
- if ggameNum = 4 then
- ggameNum = 0
- end if
- go("G" & ggameNum + 1)
- "L_arrow":
- if ggameNum = 1 then
- ggameNum = 5
- end if
- go("G" & ggameNum - 1)
- end case
- end
-